Add allow_discovery field for MCP server visibility control #107
+637
−53
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Enables MCP servers to be visible in the marketplace to unauthorized users while restricting actual access. Users can see server metadata and contact information to request access, but tools/prompts remain hidden.
Backend Changes
allow_discoveryboolean field toMCPServerConfig(default:false)get_discoverable_servers()method returns metadata-only view for unauthorized users/api/configendpoint includesdiscoverable_serversarray with limited server informationFrontend Changes
ChatContextanduseChatConfigpropagate discoverable servers from APIMarketplacePanelrenders discoverable servers with:help_emailconfigured)Configuration Example
{ "admin_tools": { "groups": ["admin"], "allow_discovery": true, "description": "Advanced analytics tools", "author": "Analytics Team", "help_email": "[email protected]" } }Users lacking
admingroup membership see the server in the marketplace but cannot enable it. Only metadata is exposed; functionality remains protected by group authorization.Security Model
allow_discovery: trueOriginal prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.